home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 13 - 1997 (partial) / 13.02 Feb 97 / Game Sprockets / Game Shell / Headers / Global.h < prev   
Encoding:
C/C++ Source or Header  |  1996-12-04  |  1.0 KB  |  38 lines  |  [TEXT/CWIE]

  1. /***********************************************************************
  2. #
  3. #        Global.h
  4. #
  5. #        This file contains the global definitions
  6. #
  7. #        Author: Michael Marinkovich
  8. #
  9. #
  10. #        Modification History: 
  11. #
  12. #            6/4/95    MWM     Initial coding                     
  13. #
  14. #
  15. #        Copyright © 1992-94 Apple Computer, Inc., All Rights Reserved
  16. #
  17. #
  18. ***********************************************************************/
  19.  
  20. #include <Drag.h>
  21.  
  22. Boolean                 gHasDMTwo;                        // is DM 2.0 available?
  23. Boolean                 gInBackground = false;            // are we in the background?
  24. Boolean                    gDone = false;                    // app is done flag        
  25. Boolean                    gHasDrag;                        // we have Drag Manager?
  26. Boolean                    gHasAbout;                        // do we have an about box showing?
  27. short                    gWindCount;                        // window counter for new windows
  28.  
  29. AEEventHandlerUPP        gAEOpenUPP = nil;
  30. AEEventHandlerUPP        gAEQuitUPP = nil;
  31. AEEventHandlerUPP        gAEOpenDocUPP = nil;
  32. AEEventHandlerUPP        gAEPrintDocUPP = nil;
  33.  
  34. Boolean                 gHasDrawSprocket;
  35. Boolean                    gHasNetSprocket;
  36. Boolean                    gHasInputSprocket;
  37. Boolean                    gHasSoundSprocket;
  38.